};
header["x86_64"] = """
#ifdef __GNUC__
-# define __DECL_REG(name) union { uint64_t r ## name, e ## name; }
+# define __DECL_REG(name) __extension__ union { uint64_t r ## name, e ## name; }
# define __align8__ __attribute__((aligned (8)))
#else
# define __DECL_REG(name) uint64_t r ## name
#ifndef __ASSEMBLY__
+#define __anonymous_union __extension__ union
+
typedef unsigned long xen_ulong_t;
#ifdef __XEN_TOOLS__
unsigned long reserved1[29];
unsigned long vhpi;
unsigned long reserved2[95];
- union {
+ __anonymous_union {
unsigned long vgr[16];
unsigned long bank1_regs[16]; // bank1 regs (r16-r31) when bank0 active
};
- union {
+ __anonymous_union {
unsigned long vbgr[16];
unsigned long bank0_regs[16]; // bank0 regs (r16-r31) when bank1 active
};
unsigned long vpsr;
unsigned long vpr;
unsigned long reserved4[76];
- union {
+ __anonymous_union {
unsigned long vcr[128];
struct {
unsigned long dcr; // CR0
unsigned long rsv6[46];
};
};
- union {
+ __anonymous_union {
unsigned long reserved5[128];
struct {
unsigned long precover_ifs;
struct xen_ia64_opt_feature {
unsigned long cmd; /* Which feature */
unsigned char on; /* Switch feature on/off */
- union {
+ __anonymous_union {
struct {
/* The page protection bit mask of the pte.
* This will be or'ed with the pte. */
#ifdef __GNUC__
/* Anonymous union includes both 32- and 64-bit names (e.g., eax/rax). */
-#define __DECL_REG(name) union { \
+#define __DECL_REG(name) __extension__ union { \
uint64_t r ## name, e ## name; \
uint32_t _e ## name; \
}